@storm-software/git-tools 2.131.21 → 2.131.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/git.cjs +28 -22
- package/bin/git.cjs.map +1 -1
- package/bin/git.js +28 -22
- package/bin/git.js.map +1 -1
- package/package.json +6 -6
package/bin/git.cjs
CHANGED
|
@@ -5100,17 +5100,20 @@ ${formatConfigLog(config5)}`,
|
|
|
5100
5100
|
v.newVersion ? extractPreid(v.newVersion) : void 0
|
|
5101
5101
|
])
|
|
5102
5102
|
);
|
|
5103
|
-
const releaseGraph = await createReleaseGraph(
|
|
5104
|
-
|
|
5105
|
-
|
|
5106
|
-
|
|
5107
|
-
|
|
5108
|
-
|
|
5109
|
-
|
|
5103
|
+
const releaseGraph = await createReleaseGraph(
|
|
5104
|
+
{
|
|
5105
|
+
tree: this.tree,
|
|
5106
|
+
projectGraph: this.projectGraph,
|
|
5107
|
+
nxReleaseConfig: this.releaseConfig,
|
|
5108
|
+
filters: {
|
|
5109
|
+
projects: options.projects,
|
|
5110
|
+
groups: options.groups
|
|
5111
|
+
},
|
|
5112
|
+
firstRelease: !!options.firstRelease,
|
|
5113
|
+
verbose: chunkOOFHIS6Q_cjs.isVerbose(this.workspaceConfig.logLevel)
|
|
5110
5114
|
},
|
|
5111
|
-
|
|
5112
|
-
|
|
5113
|
-
});
|
|
5115
|
+
this.workspaceConfig
|
|
5116
|
+
);
|
|
5114
5117
|
const projectToAdditionalDependencyBumps = /* @__PURE__ */ new Map();
|
|
5115
5118
|
for (const releaseGroup of releaseGraph.releaseGroups) {
|
|
5116
5119
|
if (releaseGroup.projectsRelationship !== "independent") {
|
|
@@ -5429,19 +5432,22 @@ ${Object.keys(allProjectChangelogs).map((p) => ` - ${p}`).join("\n")}
|
|
|
5429
5432
|
"Failed to load the project graph. Please run `nx reset`, then run the `storm-git commit` command again."
|
|
5430
5433
|
);
|
|
5431
5434
|
}
|
|
5432
|
-
const releaseGraph = await createReleaseGraph(
|
|
5433
|
-
|
|
5434
|
-
|
|
5435
|
-
|
|
5436
|
-
|
|
5437
|
-
|
|
5438
|
-
|
|
5435
|
+
const releaseGraph = await createReleaseGraph(
|
|
5436
|
+
{
|
|
5437
|
+
tree: this.tree,
|
|
5438
|
+
projectGraph: this.projectGraph,
|
|
5439
|
+
nxReleaseConfig: this.releaseConfig,
|
|
5440
|
+
filters: {
|
|
5441
|
+
projects: options.projects,
|
|
5442
|
+
groups: options.groups
|
|
5443
|
+
},
|
|
5444
|
+
firstRelease: !!options.firstRelease,
|
|
5445
|
+
verbose,
|
|
5446
|
+
preid: options.preid ?? this.workspaceConfig.preid,
|
|
5447
|
+
versionActionsOptionsOverrides: options.versionActionsOptionsOverrides
|
|
5439
5448
|
},
|
|
5440
|
-
|
|
5441
|
-
|
|
5442
|
-
preid: options.preid ?? this.workspaceConfig.preid,
|
|
5443
|
-
versionActionsOptionsOverrides: options.versionActionsOptionsOverrides
|
|
5444
|
-
});
|
|
5449
|
+
this.workspaceConfig
|
|
5450
|
+
);
|
|
5445
5451
|
if (releaseGraph.filterLog && process.env.NX_RELEASE_INTERNAL_SUPPRESS_FILTER_LOG !== "true") {
|
|
5446
5452
|
chunkOOFHIS6Q_cjs.writeDebug(formatNxLog(releaseGraph.filterLog), this.workspaceConfig);
|
|
5447
5453
|
}
|